home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEBodyReadHTML.au3 < prev    next >
Encoding:
Text File  |  2006-07-14  |  449 b   |  10 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the basic example, ready the body HTML,
  3. ;                append new HTML to the original and write it back to the browser
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IE_Example ("basic")
  8. $sHTML = _IEBodyReadHTML ($oIE)
  9. $sHTML = $sHTML & "<p><font color=red size=+5>Big RED text!</font>"
  10. _IEBodyWriteHTML ($oIE, $sHTML)